home *** CD-ROM | disk | FTP | other *** search
/ Delphi Programmer's Power Pack / Delphi Volume 1.iso / s_to_z / subdatab / subdbreg.pas < prev   
Pascal/Delphi Source File  |  1996-09-15  |  414b  |  23 lines

  1. unit Subdbreg;
  2.  
  3. interface
  4.  
  5. uses Classes, Dsgnintf,SUBdataB;
  6.  
  7.  
  8. procedure Register;
  9.  
  10. implementation
  11.  
  12.  
  13. procedure Register;
  14. begin
  15.   RegisterComponents('SUBDataBase', [TSUBDataBase]);
  16.   RegisterPropertyEditor(TypeInfo(string), TSUBDataBase, 'DataBaseName', TSUBDataBaseNameProperty);
  17.   RegisterPropertyEditor(TypeInfo(string), TSUBDataBase, 'DataBaseDir',  TSUBDataBaseDirProperty);
  18. end;
  19.  
  20.  
  21.  
  22. end.
  23.